home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 5 #3 / Selectware - The Ultimate Software Demonstration System - Selectware.ISO / int50003 / swtdemo.bat < prev    next >
Encoding:
DOS Batch File  |  1993-08-18  |  418 b   |  31 lines

  1. @echo off
  2. :start
  3. cls
  4.  
  5. echo Welcome to Trolls by IntraCorp, Inc.
  6. echo.
  7. echo  1. Run Trolls with sound card.
  8. echo  2. Run Trolls without sound card
  9. echo  3. Exit
  10. echo.
  11. echo   Enter an option (1-3)
  12. query
  13.  
  14.  
  15. if ERRORLEVEL 3 goto end
  16. if ERRORLEVEL 2 goto no
  17. if ERRORLEVEL 1 goto yes
  18. echo Error!  Error!   Input not 1-3 try again
  19. pause
  20. goto start
  21.  
  22. :no
  23. demo
  24. goto end
  25.  
  26. :yes
  27. demo /s
  28. goto end
  29.  
  30. :end
  31.